Revision Sat, 02 Mar 2024 14:53:54 GMT
Release 0.7 of cl-btree.

Changes

2011-01-28  sami-makinen

	* b-tree.lisp, cl-btree-trunk.asd, delete.lisp,
	  test/unit/test-delete.lisp, validate.lisp: Fixed tests.
	  Fixed asdf dependencies.
	* test/performance.lisp, test/validator.lisp: Added validator for
	  running checks over B-tree.
	* test/performance.lisp: Cleaned up performance tester.
	* api.lisp, delete.lisp, package.lisp: Root was handled improperly
	  not as an internal node which caused B-tree to become invalid.
	  Cases 2a/b were not correctly implemented. The min/max found from
	  subtrees were just deleted
	  from the nodes they were found instead of recursively deleting
	  the keys. This caused
	  B-tree structure become invalid.
	  Added more asserts to help find bugs.
	* b-tree.lisp, delete.lisp, search.lisp, test/performance.lisp,
	  validate.lisp: Added B-tree validator.

2011-01-26  sami-makinen

	* backtracking-list-iterator.lisp, cl-btree-trunk.asd,
	  test/unit/backtracking-list-iterator.lisp: Removed obsole
	  backtracking-list-iterator.
	* b-tree.lisp, debug.lisp, delete.lisp: Bug hunting continued.
	  Deletion still fails on some cases.

2011-01-24  sami-makinen

	* b-tree.lisp, cl-btree-trunk.asd, debug.lisp, delete.lisp,
	  insert.lisp, test/performance.lisp, test/unit/test-delete.lisp,
	  test/unit/test-insert.lisp: Rewrote some functions to not use
	  backtracking-list-iterator.
	  Fixed partially delete problem. B-tree with uint32 keys and
	  values seems to work for now but strings still broken.
	  Rewrote some functions to look cleaner.

2011-01-23  sami-makinen

	* test/performance.lisp: Added a simple performance tester.
	* b-tree.lisp, cl-btree-trunk.asd, debug.lisp, delete.lisp,
	  insert.lisp, map.lisp, max.lisp, min.lisp, print.lisp,
	  search.lisp, test/unit/b-tree-test.lisp,
	  test/unit/test-delete.lisp, test/unit/test-insert.lisp: Splitted
	  operations to separate files for readability.
	  Delete is still broken.
	  Fixed debug formatter for uint32 keys/values.
	* b-tree.lisp, loader.lisp, package.lisp, test/unit/api.lisp,
	  test/unit/b-tree-test.lisp,
	  test/unit/backtracking-list-iterator.lisp: Tried to fix delete
	  operation without luck. Something messes up the B-Tree structure
	  totally.
	  Deletion was not completed,
	  - key and child counts were not corrected after node
	  modifications,
	  - empty root was not deleted after child merge.
	  Updated tests to be in one package.

2011-01-06  sami-makinen

	* ChangeLog: Added ChangeLog.
	* README: Updated README.
	* cl-btree-trunk.asd, package.lisp, test/unit/api.lisp,
	  test/unit/b-tree-test.lisp,
	  test/unit/backtracking-list-iterator.lisp, vendor,
	  vendor/lisp-unit.lisp, vendor/mock.lisp: Refactored cl-btree to
	  use lisp-unit by Christopher K. Riesbeck.
	  Note: vendor dir contains slightly modified lisp-unit (with
	  assert-typep).
	  Also, mock functions from cl-unit-test is used still.
	  Unit tests were refactored with following modifications:
	  - def-test (name) -> define-test name
	  - assert-typep obj type -> assert-typep type obj
	  - assert-condition error -> assert-error 'error
	  - unit tests are in their own package
	  - all symbols need to have package specification

2011-01-02  sami-makinen

	* README: Updated README.
	* b-tree.asd, cl-btree-trunk.asd: Renamed asd file to follow
	  project name and svn version.
	* b-tree.asd, package.lisp: Updated system name and version
	  according to project name and version.
	  Removed org.alien-consader from package.

2010-12-05  sami-makinen

	* loader.lisp: Added loader file.

2010-12-02  sami-makinen

	* LICENSE, README: Added LICENSE and README files.

2010-11-30  sami-makinen

	* api.lisp, b-tree.asd, b-tree.lisp,
	  backtracking-list-iterator.lisp, debug.lisp, package.lisp, test,
	  test/unit, test/unit/api.lisp, test/unit/b-tree-test.lisp,
	  test/unit/backtracking-list-iterator.lisp: Initial import.
	* .: New directory.